home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / ssl / misc / CA.pl < prev    next >
Perl Script  |  2009-09-09  |  6KB  |  192 lines

  1. #!/usr/bin/perl
  2. #
  3. # CA - wrapper around ca to make it easier to use ... basically ca requires
  4. #      some setup stuff to be done before you can use it and this makes
  5. #      things easier between now and when Eric is convinced to fix it :-)
  6. #
  7. # CA -newca ... will setup the right stuff
  8. # CA -newreq[-nodes] ... will generate a certificate request 
  9. # CA -sign ... will sign the generated request and output 
  10. #
  11. # At the end of that grab newreq.pem and newcert.pem (one has the key 
  12. # and the other the certificate) and cat them together and that is what
  13. # you want/need ... I'll make even this a little cleaner later.
  14. #
  15. #
  16. # 12-Jan-96 tjh    Added more things ... including CA -signcert which
  17. #                  converts a certificate to a request and then signs it.
  18. # 10-Jan-96 eay    Fixed a few more bugs and added the SSLEAY_CONFIG
  19. #           environment variable so this can be driven from
  20. #           a script.
  21. # 25-Jul-96 eay    Cleaned up filenames some more.
  22. # 11-Jun-96 eay    Fixed a few filename missmatches.
  23. # 03-May-96 eay    Modified to use 'ssleay cmd' instead of 'cmd'.
  24. # 18-Apr-96 tjh    Original hacking
  25. #
  26. # Tim Hudson
  27. # tjh@cryptsoft.com
  28. #
  29.  
  30. # 27-Apr-98 snh    Translation into perl, fix existing CA bug.
  31. #
  32. #
  33. # Steve Henson
  34. # shenson@bigfoot.com
  35.  
  36. # default openssl.cnf file has setup as per the following
  37. # demoCA ... where everything is stored
  38.  
  39. my $openssl;
  40. if(defined $ENV{OPENSSL}) {
  41.     $openssl = $ENV{OPENSSL};
  42. } else {
  43.     $openssl = "openssl";
  44.     $ENV{OPENSSL} = $openssl;
  45. }
  46.  
  47. $SSLEAY_CONFIG=$ENV{"SSLEAY_CONFIG"};
  48. $DAYS="-days 365";    # 1 year
  49. $CADAYS="-days 1095";    # 3 years
  50. $REQ="$openssl req $SSLEAY_CONFIG";
  51. $CA="$openssl ca $SSLEAY_CONFIG";
  52. $VERIFY="$openssl verify";
  53. $X509="$openssl x509";
  54. $PKCS12="$openssl pkcs12";
  55.  
  56. $CATOP="./demoCA";
  57. $CAKEY="cakey.pem";
  58. $CAREQ="careq.pem";
  59. $CACERT="cacert.pem";
  60.  
  61. $DIRMODE = 0777;
  62.  
  63. $RET = 0;
  64.  
  65. foreach (@ARGV) {
  66.     if ( /^(-\?|-h|-help)$/ ) {
  67.         print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";
  68.         print STDERR "usage: CA -signcert certfile keyfile|-newcert|-newreq|-newca|-sign|-verify\n";
  69.         exit 0;
  70.     } elsif (/^-newcert$/) {
  71.         # create a certificate
  72.         system ("$REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS");
  73.         $RET=$?;
  74.         print "Certificate is in newcert.pem, private key is in newkey.pem\n"
  75.     } elsif (/^-newreq$/) {
  76.         # create a certificate request
  77.         system ("$REQ -new -keyout newkey.pem -out newreq.pem $DAYS");
  78.         $RET=$?;
  79.         print "Request is in newreq.pem, private key is in newkey.pem\n";
  80.     } elsif (/^-newreq-nodes$/) {
  81.         # create a certificate request
  82.         system ("$REQ -new -nodes -keyout newkey.pem -out newreq.pem $DAYS");
  83.         $RET=$?;
  84.         print "Request is in newreq.pem, private key is in newkey.pem\n";
  85.     } elsif (/^-newca$/) {
  86.         # if explicitly asked for or it doesn't exist then setup the
  87.         # directory structure that Eric likes to manage things 
  88.         $NEW="1";
  89.         if ( "$NEW" || ! -f "${CATOP}/serial" ) {
  90.         # create the directory hierarchy
  91.         mkdir $CATOP, $DIRMODE;
  92.         mkdir "${CATOP}/certs", $DIRMODE;
  93.         mkdir "${CATOP}/crl", $DIRMODE ;
  94.         mkdir "${CATOP}/newcerts", $DIRMODE;
  95.         mkdir "${CATOP}/private", $DIRMODE;
  96.         open OUT, ">${CATOP}/index.txt";
  97.         close OUT;
  98.         open OUT, ">${CATOP}/crlnumber";
  99.         print OUT "01\n";
  100.         close OUT;
  101.         }
  102.         if ( ! -f "${CATOP}/private/$CAKEY" ) {
  103.         print "CA certificate filename (or enter to create)\n";
  104.         $FILE = <STDIN>;
  105.  
  106.         chop $FILE;
  107.  
  108.         # ask user for existing CA certificate
  109.         if ($FILE) {
  110.             cp_pem($FILE,"${CATOP}/private/$CAKEY", "PRIVATE");
  111.             cp_pem($FILE,"${CATOP}/$CACERT", "CERTIFICATE");
  112.             $RET=$?;
  113.         } else {
  114.             print "Making CA certificate ...\n";
  115.             system ("$REQ -new -keyout " .
  116.             "${CATOP}/private/$CAKEY -out ${CATOP}/$CAREQ");
  117.             system ("$CA -create_serial " .
  118.             "-out ${CATOP}/$CACERT $CADAYS -batch " . 
  119.             "-keyfile ${CATOP}/private/$CAKEY -selfsign " .
  120.             "-extensions v3_ca " .
  121.             "-infiles ${CATOP}/$CAREQ ");
  122.             $RET=$?;
  123.         }
  124.         }
  125.     } elsif (/^-pkcs12$/) {
  126.         my $cname = $ARGV[1];
  127.         $cname = "My Certificate" unless defined $cname;
  128.         system ("$PKCS12 -in newcert.pem -inkey newkey.pem " .
  129.             "-certfile ${CATOP}/$CACERT -out newcert.p12 " .
  130.             "-export -name \"$cname\"");
  131.         $RET=$?;
  132.         print "PKCS #12 file is in newcert.p12\n";
  133.         exit $RET;
  134.     } elsif (/^-xsign$/) {
  135.         system ("$CA -policy policy_anything -infiles newreq.pem");
  136.         $RET=$?;
  137.     } elsif (/^(-sign|-signreq)$/) {
  138.         system ("$CA -policy policy_anything -out newcert.pem " .
  139.                             "-infiles newreq.pem");
  140.         $RET=$?;
  141.         print "Signed certificate is in newcert.pem\n";
  142.     } elsif (/^(-signCA)$/) {
  143.         system ("$CA -policy policy_anything -out newcert.pem " .
  144.                     "-extensions v3_ca -infiles newreq.pem");
  145.         $RET=$?;
  146.         print "Signed CA certificate is in newcert.pem\n";
  147.     } elsif (/^-signcert$/) {
  148.         system ("$X509 -x509toreq -in newreq.pem -signkey newreq.pem " .
  149.                                 "-out tmp.pem");
  150.         system ("$CA -policy policy_anything -out newcert.pem " .
  151.                             "-infiles tmp.pem");
  152.         $RET = $?;
  153.         print "Signed certificate is in newcert.pem\n";
  154.     } elsif (/^-verify$/) {
  155.         if (shift) {
  156.         foreach $j (@ARGV) {
  157.             system ("$VERIFY -CAfile $CATOP/$CACERT $j");
  158.             $RET=$? if ($? != 0);
  159.         }
  160.         exit $RET;
  161.         } else {
  162.             system ("$VERIFY -CAfile $CATOP/$CACERT newcert.pem");
  163.             $RET=$?;
  164.                 exit 0;
  165.         }
  166.     } else {
  167.         print STDERR "Unknown arg $_\n";
  168.         print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";
  169.         print STDERR "usage: CA -signcert certfile keyfile|-newcert|-newreq|-newca|-sign|-verify\n";
  170.         exit 1;
  171.     }
  172. }
  173.  
  174. exit $RET;
  175.  
  176. sub cp_pem {
  177. my ($infile, $outfile, $bound) = @_;
  178. open IN, $infile;
  179. open OUT, ">$outfile";
  180. my $flag = 0;
  181. while (<IN>) {
  182.     $flag = 1 if (/^-----BEGIN.*$bound/) ;
  183.     print OUT $_ if ($flag);
  184.     if (/^-----END.*$bound/) {
  185.         close IN;
  186.         close OUT;
  187.         return;
  188.     }
  189. }
  190. }
  191.  
  192.